home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
CUGUK
/
COMMS
/
C101.ZIP
/
UUPC11XT.ZIP
/
RN
/
RN.H
< prev
next >
Wrap
C/C++ Source or Header
|
1992-11-21
|
926b
|
37 lines
/* $Header: E:\SRC\UUPC\RN\RCS/RN.H 1.1 1992/11/21 06:14:58 ahd Exp $
*
* $Log: RN.H $
* Revision 1.1 1992/11/21 06:14:58 ahd
* Initial
*
*
* Rev 1.0 18 Nov 1990 0:22:46
* Initial revision.
* Revision 4.3 85/05/01 11:48:19 lwall
* Baseline for release with 4.3bsd.
*
*/
EXT char ngdir[FILENAME_MAX];
EXT char ngname[FILENAME_MAX];
EXT NG_NUM ng INIT(0); /* current newsgroup index into rcline and toread */
EXT NG_NUM current_ng INIT(0); /* stable current newsgroup so we can ditz with ng */
EXT NG_NUM starthere INIT(0); /* set to the first newsgroup with unread news on startup */
#ifdef msdos
#define spool E_newsdir
extern char *E_newsdir;
#else
EXT char *spool INIT(Nullch); /* public news spool directory */
#endif
void rn_init();
void main();
void set_ngname();
char *getngdir();
#include <stdlib.h>
#include <stdio.h>
#include <string.h>